home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Interactive 7
/
PC World Interactive 7.iso
/
program
/
ctutor.exe
/
ANSWERS
/
CH02_3.C
< prev
next >
Wrap
C/C++ Source or Header
|
1994-05-15
|
238b
|
12 lines
main()
{
int index;
/* index = 13; */
printf("The value of the index is %d\n", index);
index = 27;
printf("The value of the index is %d\n", index);
index = 10;
printf("The value of the index is %d\n", index);
}